home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / fpkpas92.zip / SRCRTL.ZIP / RTL / DOS / INNR.INC < prev    next >
Text File  |  1997-07-01  |  912b  |  37 lines

  1. {****************************************************************************
  2.  
  3.                       Copyright (c) 1993,96 by Florian Klämpfl
  4.  
  5.  ****************************************************************************}
  6.  
  7. { enthaelt die Konstanten fuer die Nummer der internen Inlineprozeduren }
  8. { wird in CODEGEN.PAS und SYSTEM.PP eingefuegt                          }
  9.  
  10. const
  11.    in_lo_word = 1;
  12.    in_hi_word = 2;
  13.    in_lo_long = 3;
  14.    in_hi_long = 4;
  15.    in_ord_char = 5;
  16.    in_length_string = 6;
  17.    in_chr_byte = 7;
  18.    in_inc_byte = 8;
  19.    in_inc_word = 9;
  20.    in_inc_dword = 10;
  21.    in_dec_byte = 11;
  22.    in_dec_word = 12;
  23.    in_dec_dword = 13;
  24.    in_write_x = 14;
  25.    in_writeln_x = 15;
  26.    in_read_x = 16;
  27.    in_readln_x = 17;
  28.    in_concat_x = 18;
  29.    in_assigned_x = 19;
  30.    in_str_x_string = 20;
  31.    in_ofs_x = 21;
  32.    in_sizeof_x = 22;
  33.    in_typeof_x = 23;
  34.    in_val_x = 24;
  35.  
  36.  
  37.